math/big.nat.trailingZeroBits (method)
10 uses
math/big (current package)
decimal.go#L67: ntz := m.trailingZeroBits()
float.go#L219: return uint(len(x.mant))*_W - x.mant.trailingZeroBits()
int.go#L462: if n <= 53 || n < 64 && n-int(x.abs.trailingZeroBits()) <= 53 {
int.go#L556: return x.abs.trailingZeroBits()
int.go#L972: s := a.abs.trailingZeroBits()
int.go#L1037: e := s.abs.trailingZeroBits()
nat.go#L685: func (x nat) trailingZeroBits() uint {
nat.go#L1072: n := m.trailingZeroBits()
prime.go#L89: k := nm1.trailingZeroBits()
prime.go#L217: r := int(s.trailingZeroBits())
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |